runtime.limiterEvent.stamp (field)

7 uses

	runtime (current package)
		mgclimit.go#L395: 	stamp atomic.Uint64 // Stores a limiterEventStamp.
		mgclimit.go#L409: 	if limiterEventStamp(e.stamp.Load()).typ() != limiterEventNone {
		mgclimit.go#L412: 	e.stamp.Store(uint64(makeLimiterEventStamp(typ, now)))
		mgclimit.go#L424: 		old := limiterEventStamp(e.stamp.Load())
		mgclimit.go#L438: 		if e.stamp.CompareAndSwap(uint64(old), uint64(new)) {
		mgclimit.go#L451: 		stamp = limiterEventStamp(e.stamp.Load())
		mgclimit.go#L456: 		if e.stamp.CompareAndSwap(uint64(stamp), uint64(limiterEventStampNone)) {